Examples of Add XML as String |
|
Add XML as String with Select
Target Element before Message Mapping |
Source Element |
Target Element after Message Mapping |
|---|---|---|
The Target element is/GetNotificationTaskInput/GetNotificationTask/Taskand the structure of Target element before mapping the message is as follows: <GetNotificationTaskInput>
<GetNotificationTask>
<Header>cn=rsahu,cn=authenticated users,
cn=cordys,o=vanenburg.com</Header>
<Task>Dummy Task</Task>
</GetNotificationTask>
</GetNotificationTaskInput>
|
The Source element is/registeredAddressand the XML structure of the Source element is as follows: <registeredAddress>
<string>Winrock Boulevard,
Software Units Layout, Freemont
CA - 87757
USA
</string>
</registeredAddress>
|
<GetNotificationTaskInput>
<GetNotificationTask>
<Header>cn=rsahu,cn=authenticated users,
cn=cordys,o=vanenburg.com</Header>
<Task>Dummy Task
<registeredAddress>
<string>Winrock Boulevard,
Software Units Layout,
Freemont CA - 87757 USA</string>
</registeredAddress>
</Task>
</GetNotificationTask>
</GetNotificationTaskInput>
|
Add XML as String with Fixed Value
Target Element before Message Mapping |
Source Element |
Target Element after Message Mapping |
|---|---|---|
The Target element is/Orders/OrderIDand the XML structure of the Target element before mapping the message is as follows: <Orders>
<OrderID/>
</Orders>
|
The Source element is 250 and the XML structure of the Source element is 250. |
<Orders>
<OrderID>250</OrderID>
</Orders>
|